Configuring Shared Web Server SSL protocols and cipher suites
The four container properties that control Shared Web Server SSL protocols and ciphers are comma-separated lists that you set in the container.properties file.
About this task
You can combine included and excluded lists using included first.
Procedure
-
Stop the basic runtime or runtime cluster.
-
Navigate to <installation_directory>/conf>
-
Open the container.properties file in a text editor such as Notepad.
-
Configure the SSL protocol by using a combination of these container properties:
com.boomi.container.sharedServer.http.ssl.includedCipherSuitescom.boomi.container.sharedServer.http.ssl.includedProtocolscom.boomi.container.sharedServer.http.ssl.excludedCipherSuitescom.boomi.container.sharedServer.http.ssl.excludedProtocols
The following examples show a configured SSL protocol.
-
To include the SSLv2Hello protocols, specify this property:
com.boomi.container.sharedServer.http.ssl.includedProtocols=SSLv2Hello -
To exclude the SSLv3 protocol, specify this property:
com.boomi.container.sharedServer.http.ssl.excludedProtocols=SSLv3
-
Save and close the file.
-
Restart the basic runtime or runtime cluster.
This example shows cipher codes values that exclude MD5:
com.boomi.container.sharedServer.http.ssl.includedCipherSuites=TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256,
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256,
TLS_RSA_WITH_AES_128_CBC_SHA256,
TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256,
TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256,
TLS_DHE_RSA_WITH_AES_128_CBC_SHA256,
TLS_DHE_DSS_WITH_AES_128_CBC_SHA256TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA,
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA,
TLS_RSA_WITH_AES_128_CBC_SHA,
TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA,
TLS_ECDH_RSA_WITH_AES_128_CBC_SHA,
TLS_DHE_RSA_WITH_AES_128_CBC_SHA,
TLS_DHE_DSS_WITH_AES_128_CBC_SHA,
TLS_ECDHE_ECDSA_WITH_RC4_128_SHA,
TLS_ECDHE_RSA_WITH_RC4_128_SHA,
SSL_RSA_WITH_RC4_128_SHA,
TLS_ECDH_ECDSA_WITH_RC4_128_SHA,
TLS_ECDH_RSA_WITH_RC4_128_SHA,
TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA,
TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA,
SSL_RSA_WITH_3DES_EDE_CBC_SHA,
TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA,
TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA,
SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA,SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA,TLS_EMPTY_RENEGOTIATION_INFO_SCSV